home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libol / alist.h < prev    next >
C/C++ Source or Header  |  2005-10-16  |  2KB  |  84 lines

  1. /***************************************************************************
  2.  *
  3.  * Copyright (c) 1998-1999 Niels M÷ller
  4.  * Copyright (c) 1999 BalaBit Computing
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * $Id: alist.h,v 1.2 1999/07/10 13:23:09 bazsi Exp $
  21.  *
  22.  ***************************************************************************/
  23.  
  24. #ifndef __ALIST_H_INCLUDED
  25. #define __ALIST_H_INCLUDED
  26.  
  27. #include "objects.h"
  28. #include <stdarg.h>
  29.  
  30. /* Forward declaration */
  31. struct alist;
  32.  
  33. #define CLASS_DECLARE
  34. #include "alist.h.x"
  35. #undef CLASS_DECLARE
  36.  
  37. /* Abstract interface allows for multiple implementations ("real"
  38.  * alists, linear tables, hash tables */
  39.  
  40. /* CLASS:
  41.    (meta
  42.      (name alist)
  43.      (methods
  44.        "void * (*get)(struct alist *self, int atom)"
  45.        "void (*set)(struct alist *self, int atom, void *value)"))
  46. */
  47.  
  48. /* CLASS:
  49.    (class
  50.      (name alist)
  51.      (meta alist)
  52.      (vars
  53.        (size simple unsigned))
  54.      ; Only subclasses has methods 
  55.      (methods NULL NULL))
  56. */
  57.  
  58. #define ALIST_CLASS(l) ((struct alist_meta *) ((l)->super.isa))
  59.  
  60. #define ALIST_GET(alist, atom) \
  61.      (ALIST_CLASS(alist)->get((alist), (atom)))
  62.  
  63. #define ALIST_SET(alist, atom, value) \
  64.      (ALIST_CLASS(alist)->set((alist), (atom), (value)))
  65.  
  66. #if 0
  67. #define ALIST_KEYS(alist) ((alist)->keys((alist)))
  68. #endif
  69.  
  70. struct alist *alist_addv(struct alist *a, unsigned n, va_list args);
  71. struct alist *alist_add(struct alist *a, unsigned n, ...);
  72.  
  73. /* n is the number of pairs. The argument list should be terminated
  74.  * with -1, for sanity checks. */
  75.      
  76. struct alist *make_linear_alist(unsigned n, ...);
  77. struct alist *make_linked_alist(unsigned n, ...);
  78.  
  79. #define make_alist make_linear_alist
  80.  
  81. #define MAX_LINEAR_ALIST_SIZE    100
  82.  
  83. #endif /* LSH_ALIST_H_INCLUDED */
  84.